/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  v1806                                 |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      fvOptions;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //


fixedTemperature
{
    type            fixedTemperatureConstraint;
    active          yes;
    timeStart 	500;
    duration 	1000;


    selectionMode   cellZone;
    cellZone        heatSource;

    mode            uniform;      // uniform or lookup

    
    temperature     constant 1273; // fixed temperature with time [K]

    
}
// ************************************************************************* //
